DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / View<T> Class / Select<TResult> Method
The type of the value returned by selector.
A transform function to apply to each element.

In This Topic
    Select<TResult> Method (View<T>)
    In This Topic
    Projects each element of a view into a new form.
    Syntax
    'Declaration
     
    Public Function Select(Of TResult)( _
       ByVal selector As Expression(Of Func(Of T,TResult)) _
    ) As View(Of TResult)

    Parameters

    selector
    A transform function to apply to each element.

    Type Parameters

    TResult
    The type of the value returned by selector.

    Return Value

    A view whose elements are the result of invoking the transform function on each element of this view.
    See Also